This is a search engine friendly export of a TiddlyWiki. Please click here for the actual site.

Recursive Grep


An alternate method of recursive grep for systems (such as AIX apparently) where grep does not have a -r parameter.

{{{find . | xargs grep <searchstring>}}}

Add -print0 parameter to find if filenames will have spaces.

{{{find -print0 . | xargs grep <searchstring>}}}